home *** CD-ROM | disk | FTP | other *** search
/ Armageddon - Interactive Preview / Interactive Preview: Armageddon.iso / pc / control.dxr / Scripts & Behaviors_6_Quiz Game Button.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  552 b   |  23 lines

  1. global gGameScreen
  2.  
  3. on mouseEnter me
  4.   cursor(280)
  5.   set the member of sprite the currentSpriteNum to "Game2 Button Roll"
  6.   set the member of sprite gGameScreen to "Blood Game Screen"
  7. end
  8.  
  9. on mouseLeave me
  10.   cursor(0)
  11.   set the member of sprite the currentSpriteNum to "Game2 Button Normal"
  12.   set the member of sprite gGameScreen to "Complex Loop"
  13. end
  14.  
  15. on mouseUp me
  16.   set the member of sprite the currentSpriteNum to "Game2 Button Roll"
  17.   go(1, "QUIZSTRT")
  18. end
  19.  
  20. on mouseDown me
  21.   set the member of sprite the currentSpriteNum to "Game2 Button In"
  22. end
  23.